home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 003-desktop.lzm / usr / bin / pspell-config < prev    next >
Encoding:
Text File  |  2007-05-11  |  365 b   |  20 lines

  1. #!/bin/sh
  2.  
  3. # This script is provided for backward compatibility with programs
  4. # that use pspell.  Do not use as it will eventually go away.
  5.  
  6. case $1 in
  7. --version | version)
  8.   echo 0.60.5
  9.   ;;
  10. --datadir | datadir)
  11.   echo "/usr/share"
  12.   ;;
  13. --pkgdatadir | pkgdatadir)
  14.   echo "/usr/lib/aspell"
  15.   ;;
  16. *)
  17.   echo "usage: pspell-config version|datadir|pkgdatadir"
  18.   ;;
  19. esac
  20.